home *** CD-ROM | disk | FTP | other *** search
- package symjava.sql;
-
- import java.util.Properties;
-
- public interface Driver {
- Connection connect(String var1, Properties var2) throws SQLException;
-
- boolean acceptsURL(String var1) throws SQLException;
-
- DriverPropertyInfo[] getPropertyInfo(String var1, Properties var2) throws SQLException;
-
- int getMajorVersion();
-
- int getMinorVersion();
-
- boolean jdbcCompliant();
- }
-